PHP SESSION由于html infront无法正常工作,我该如何解决?

时间:2019-05-09 12:24:45

标签: php ajax webserver

问题是我的php会话无法正常工作。 我的网站结构如下: 您只有一个页面,该页面会通过ajax在诸如单击按钮之类的事件上重新加载特定内容。

有点像这样

文件1

Private Sub Worksheet_Change(ByVal Target As Excel.Range)

    Dim varray As Variant
    Dim i As Long
    ost = Cells(Rows.Count, "M").End(xlUp).Row
    varray = Range("M1:M200").Value
    If Not Intersect(Target, Columns(13)) Is Nothing Then   'If Not Intersect(Target, Range("A1:A3")) Is Nothing Then -- only act on changes to cells A1 to A3
        Application.ScreenUpdating = False
        Application.Calculation = xlCalculationManual
        For i = UBound(varray, 1) To LBound(varray, 1) Step -1  'Go backwards
            If i < 4 Then
                Application.Calculation = xlCalculationAutomatic
                Application.ScreenUpdating = True
                Exit Sub
            End If
            If VBA.Len(varray(i, 1)) > 0 Then
                Range(Cells(4, "T"), Cells(4, "BD")).Copy Cells(i, "T")
            Else
                Range(Cells(i, "T"), Cells(i, "BD")).ClearContents
            End If
        Next
        Application.Calculation = xlCalculationAutomatic
        Application.ScreenUpdating = True
    End If

End Sub

文件2:

<?php
session_start();
?>

<html>
  <some html>
  </some html>
  <container to load content in>
  </ container to load content in>
</html>

如果用户按下btn文件,则会将两个加载到容器中以加载内容。

问题在于,由于文件两个内容上方现在存在html,session_start()无法正常工作。...除了重写整个页面结构之外,是否有任何方法可以解决此问题?

非常感谢您的帮助。对不起,如果这不像其他问题那样结构化,这是我的第一个问题

0 个答案:

没有答案